home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2008 February / PCWFEB08.iso / Software / Resources / Developers / Alleycode HTML Editor 2.2 / alleycodesetup.exe / {app} / PHP / math.php < prev    next >
Encoding:
PHP Script  |  2003-11-08  |  62 b   |  6 lines

  1. <?php
  2.  
  3. $sum = 5 * 7 + 12 / 2; //returns 41
  4. echo $sum;
  5.  
  6. ?>